Replicated code from Jenny Trickey’s repo here
Summaries generated: 2025 Jun 03 20:19 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)
# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
# ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)
# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets,
paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported
# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
Source some external functions
source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))
# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
dets <- readRDS(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata
if (file.exists(detsFiltFile)){
detsFilt <- readRDS(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))
Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 5123 out of 5123 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========== | 7% | |========== | 8% | |=========== | 8% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |=============== | 11% | |=============== | 12% | |================ | 12% | |================ | 13% | |================= | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |==================== | 15% | |==================== | 16% | |===================== | 16% | |===================== | 17% | |====================== | 17% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |========================= | 19% | |========================= | 20% | |========================== | 20% | |========================== | 21% | |=========================== | 21% | |=========================== | 22% | |============================ | 22% | |============================= | 22% | |============================= | 23% | |============================== | 23% | |============================== | 24% | |=============================== | 24% | |=============================== | 25% | |================================ | 25% | |================================ | 26% | |================================= | 26% | |================================== | 26% | |================================== | 27% | |=================================== | 27% | |=================================== | 28% | |==================================== | 28% | |==================================== | 29% | |===================================== | 29% | |===================================== | 30% | |====================================== | 30% | |======================================= | 30% | |======================================= | 31% | |======================================== | 31% | |======================================== | 32% | |========================================= | 32% | |========================================= | 33% | |========================================== | 33% | |=========================================== | 33% | |=========================================== | 34% | |============================================ | 34% | |============================================ | 35% | |============================================= | 35% | |============================================= | 36% | |============================================== | 36% | |============================================== | 37% | |=============================================== | 37% | |================================================ | 37% | |================================================ | 38% | |================================================= | 38% | |================================================= | 39% | |================================================== | 39% | |================================================== | 40% | |=================================================== | 40% | |=================================================== | 41% | |==================================================== | 41% | |===================================================== | 41% | |===================================================== | 42% | |====================================================== | 42% | |====================================================== | 43% | |======================================================= | 43% | |======================================================= | 44% | |======================================================== | 44% | |========================================================= | 44% | |========================================================= | 45% | |========================================================== | 45% | |========================================================== | 46% | |=========================================================== | 46% | |=========================================================== | 47% | |============================================================ | 47% | |============================================================ | 48% | |============================================================= | 48% | |============================================================== | 48% | |============================================================== | 49% | |=============================================================== | 49% | |=============================================================== | 50% | |================================================================ | 50% | |================================================================ | 51% | |================================================================= | 51% | |================================================================= | 52% | |================================================================== | 52% | |=================================================================== | 52% | |=================================================================== | 53% | |==================================================================== | 53% | |==================================================================== | 54% | |===================================================================== | 54% | |===================================================================== | 55% | |====================================================================== | 55% | |====================================================================== | 56% | |======================================================================= | 56% | |======================================================================== | 56% | |======================================================================== | 57% | |========================================================================= | 57% | |========================================================================= | 58% | |========================================================================== | 58% | |========================================================================== | 59% | |=========================================================================== | 59% | |============================================================================ | 59% | |============================================================================ | 60% | |============================================================================= | 60% | |============================================================================= | 61% | |============================================================================== | 61% | |============================================================================== | 62% | |=============================================================================== | 62% | |=============================================================================== | 63% | |================================================================================ | 63% | |================================================================================= | 63% | |================================================================================= | 64% | |================================================================================== | 64% | |================================================================================== | 65% | |=================================================================================== | 65% | |=================================================================================== | 66% | |==================================================================================== | 66% | |==================================================================================== | 67% | |===================================================================================== | 67% | |====================================================================================== | 67% | |====================================================================================== | 68% | |======================================================================================= | 68% | |======================================================================================= | 69% | |======================================================================================== | 69% | |======================================================================================== | 70% | |========================================================================================= | 70% | |========================================================================================== | 70% | |========================================================================================== | 71% | |=========================================================================================== | 71% | |=========================================================================================== | 72% | |============================================================================================ | 72% | |============================================================================================ | 73% | |============================================================================================= | 73% | |============================================================================================= | 74% | |============================================================================================== | 74% | |=============================================================================================== | 74% | |=============================================================================================== | 75% | |================================================================================================ | 75% | |================================================================================================ | 76% | |================================================================================================= | 76% | |================================================================================================= | 77% | |================================================================================================== | 77% | |================================================================================================== | 78% | |=================================================================================================== | 78% | |==================================================================================================== | 78% | |==================================================================================================== | 79% | |===================================================================================================== | 79% | |===================================================================================================== | 80% | |====================================================================================================== | 80% | |====================================================================================================== | 81% | |======================================================================================================= | 81% | |======================================================================================================== | 81% | |======================================================================================================== | 82% | |========================================================================================================= | 82% | |========================================================================================================= | 83% | |========================================================================================================== | 83% | |========================================================================================================== | 84% | |=========================================================================================================== | 84% | |=========================================================================================================== | 85% | |============================================================================================================ | 85% | |============================================================================================================= | 85% | |============================================================================================================= | 86% | |============================================================================================================== | 86% | |============================================================================================================== | 87% | |=============================================================================================================== | 87% | |=============================================================================================================== | 88% | |================================================================================================================ | 88% | |================================================================================================================ | 89% | |================================================================================================================= | 89% | |================================================================================================================== | 89% | |================================================================================================================== | 90% | |=================================================================================================================== | 90% | |=================================================================================================================== | 91% | |==================================================================================================================== | 91% | |==================================================================================================================== | 92% | |===================================================================================================================== | 92% | |===================================================================================================================== | 93% | |====================================================================================================================== | 93% | |======================================================================================================================= | 93% | |======================================================================================================================= | 94% | |======================================================================================================================== | 94% | |======================================================================================================================== | 95% | |========================================================================================================================= | 95% | |========================================================================================================================= | 96% | |========================================================================================================================== | 96% | |=========================================================================================================================== | 96% | |=========================================================================================================================== | 97% | |============================================================================================================================ | 97% | |============================================================================================================================ | 98% | |============================================================================================================================= | 98% | |============================================================================================================================= | 99% | |============================================================================================================================== | 99% | |============================================================================================================================== | 100% | |===============================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files.
## Updated the locations of 5123 out of 5123 missing binary files.
## Updating files in events...
## | | | 0% | |= | 0% | |= | 1% | |== | 1% | |== | 2% | |=== | 2% | |=== | 3% | |==== | 3% | |==== | 4% | |===== | 4% | |====== | 4% | |====== | 5% | |======= | 5% | |======= | 6% | |======== | 6% | |======== | 7% | |========= | 7% | |========== | 7% | |========== | 8% | |=========== | 8% | |=========== | 9% | |============ | 9% | |============ | 10% | |============= | 10% | |============= | 11% | |============== | 11% | |=============== | 11% | |=============== | 12% | |================ | 12% | |================ | 13% | |================= | 13% | |================= | 14% | |================== | 14% | |================== | 15% | |=================== | 15% | |==================== | 15% | |==================== | 16% | |===================== | 16% | |===================== | 17% | |====================== | 17% | |====================== | 18% | |======================= | 18% | |======================= | 19% | |======================== | 19% | |========================= | 19% | |========================= | 20% | |========================== | 20% | |========================== | 21% | |=========================== | 21% | |=========================== | 22% | |============================ | 22% | |============================= | 22% | |============================= | 23% | |============================== | 23% | |============================== | 24% | |=============================== | 24% | |=============================== | 25% | |================================ | 25% | |================================ | 26% | |================================= | 26% | |================================== | 26% | |================================== | 27% | |=================================== | 27% | |=================================== | 28% | |==================================== | 28% | |==================================== | 29% | |===================================== | 29% | |===================================== | 30% | |====================================== | 30% | |======================================= | 30% | |======================================= | 31% | |======================================== | 31% | |======================================== | 32% | |========================================= | 32% | |========================================= | 33% | |========================================== | 33% | |=========================================== | 33% | |=========================================== | 34% | |============================================ | 34% | |============================================ | 35% | |============================================= | 35% | |============================================= | 36% | |============================================== | 36% | |============================================== | 37% | |=============================================== | 37% | |================================================ | 37% | |================================================ | 38% | |================================================= | 38% | |================================================= | 39% | |================================================== | 39% | |================================================== | 40% | |=================================================== | 40% | |=================================================== | 41% | |==================================================== | 41% | |===================================================== | 41% | |===================================================== | 42% | |====================================================== | 42% | |====================================================== | 43% | |======================================================= | 43% | |======================================================= | 44% | |======================================================== | 44% | |========================================================= | 44% | |========================================================= | 45% | |========================================================== | 45% | |========================================================== | 46% | |=========================================================== | 46% | |=========================================================== | 47% | |============================================================ | 47% | |============================================================ | 48% | |============================================================= | 48% | |============================================================== | 48% | |============================================================== | 49% | |=============================================================== | 49% | |=============================================================== | 50% | |================================================================ | 50% | |================================================================ | 51% | |================================================================= | 51% | |================================================================= | 52% | |================================================================== | 52% | |=================================================================== | 52% | |=================================================================== | 53% | |==================================================================== | 53% | |==================================================================== | 54% | |===================================================================== | 54% | |===================================================================== | 55% | |====================================================================== | 55% | |====================================================================== | 56% | |======================================================================= | 56% | |======================================================================== | 56% | |======================================================================== | 57% | |========================================================================= | 57% | |========================================================================= | 58% | |========================================================================== | 58% | |========================================================================== | 59% | |=========================================================================== | 59% | |============================================================================ | 59% | |============================================================================ | 60% | |============================================================================= | 60% | |============================================================================= | 61% | |============================================================================== | 61% | |============================================================================== | 62% | |=============================================================================== | 62% | |=============================================================================== | 63% | |================================================================================ | 63% | |================================================================================= | 63% | |================================================================================= | 64% | |================================================================================== | 64% | |================================================================================== | 65% | |=================================================================================== | 65% | |=================================================================================== | 66% | |==================================================================================== | 66% | |==================================================================================== | 67% | |===================================================================================== | 67% | |====================================================================================== | 67% | |====================================================================================== | 68% | |======================================================================================= | 68% | |======================================================================================= | 69% | |======================================================================================== | 69% | |======================================================================================== | 70% | |========================================================================================= | 70% | |========================================================================================== | 70% | |========================================================================================== | 71% | |=========================================================================================== | 71% | |=========================================================================================== | 72% | |============================================================================================ | 72% | |============================================================================================ | 73% | |============================================================================================= | 73% | |============================================================================================= | 74% | |============================================================================================== | 74% | |=============================================================================================== | 74% | |=============================================================================================== | 75% | |================================================================================================ | 75% | |================================================================================================ | 76% | |================================================================================================= | 76% | |================================================================================================= | 77% | |================================================================================================== | 77% | |================================================================================================== | 78% | |=================================================================================================== | 78% | |==================================================================================================== | 78% | |==================================================================================================== | 79% | |===================================================================================================== | 79% | |===================================================================================================== | 80% | |====================================================================================================== | 80% | |====================================================================================================== | 81% | |======================================================================================================= | 81% | |======================================================================================================== | 81% | |======================================================================================================== | 82% | |========================================================================================================= | 82% | |========================================================================================================= | 83% | |========================================================================================================== | 83% | |========================================================================================================== | 84% | |=========================================================================================================== | 84% | |=========================================================================================================== | 85% | |============================================================================================================ | 85% | |============================================================================================================= | 85% | |============================================================================================================= | 86% | |============================================================================================================== | 86% | |============================================================================================================== | 87% | |=============================================================================================================== | 87% | |=============================================================================================================== | 88% | |================================================================================================================ | 88% | |================================================================================================================ | 89% | |================================================================================================================= | 89% | |================================================================================================================== | 89% | |================================================================================================================== | 90% | |=================================================================================================================== | 90% | |=================================================================================================================== | 91% | |==================================================================================================================== | 91% | |==================================================================================================================== | 92% | |===================================================================================================================== | 92% | |===================================================================================================================== | 93% | |====================================================================================================================== | 93% | |======================================================================================================================= | 93% | |======================================================================================================================= | 94% | |======================================================================================================================== | 94% | |======================================================================================================================== | 95% | |========================================================================================================================= | 95% | |========================================================================================================================= | 96% | |========================================================================================================================== | 96% | |=========================================================================================================================== | 96% | |=========================================================================================================================== | 97% | |============================================================================================================================ | 97% | |============================================================================================================================ | 98% | |============================================================================================================================= | 98% | |============================================================================================================================= | 99% | |============================================================================================================================== | 99% | |============================================================================================================================== | 100% | |===============================================================================================================================| 100%
Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_011/CalCurCEAS_2024_011_ch1.rdata
To be used for manual scoring based on report figures.
# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents),
species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))
# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}
# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]
# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
1562 events (files) in drift. 244 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
refSpecs <- NULL
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Loop through each detection event (n = 244) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- PAMpal::events(detsFilt)
eventUID <- names(eventList)[iEvent]
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
# keep this in evTable
evTable$keep[evTable$id == eventUID] <- TRUE
evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak,
na.rm = TRUE)
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
# wl <- whistleSummary(detsFilt, eventUID)
#
# cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
# cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
if (any(!is.na(cl$snr))){
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = params$channelNum, norm = TRUE,
noise = TRUE, sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
if (length(refSpecs) > 0){
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(rep(1, length(refSpecs)), 2, 1, 3),
lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
} else if (length(refSpecs) == 0){
legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
lty = c(2, 1, 3), lwd = c(2, 3, 2),
col = c('black', 'black', 'black'), cex = 0.8)
}
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
#
# cat('\n##### Whistle plots and table\n')
#
# # if whistles present ...
# if (wl$nWhistles > 0) {
# # create median stats table for all whistles
# # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# # cat('\n')
#
# # plot whistle contours
# # map the needed binary files
# binFiles <- dets@events[[eventUID]]@files$binaries
# wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
# binFiles)
# wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
#
# # load them
# whBin <- loadMultiBinaries(wmFiles)
# # trim to just the event time
# whBinEv <- whBin[names(whBin) %in%
# detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
#
# # #plot - ggplot version/functionized
# # pc <- plotContours(whBinEv)
# # # print(pc)
# # pc + ggtitle(eventUID)
# #
#
# # get plot limits
# # xMax <- 0
# # yMax <- 0
# # for (wc in 1:length(names(whBinEv))){
# # df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# # freq = whBinEv[[wc]]$freq/1000)
# # xMaxTmp <- max(df$time)
# # yMaxTmp <- max(df$freq)
# # if (xMaxTmp > xMax){xMax <- xMaxTmp}
# # if (yMaxTmp > yMax){yMax <- yMaxTmp}
# # }
# # or use standard max lims
# xMax <- 1.5
# yMax <- 20
#
# # plot each line
# plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
# xlab = 'Time (s)', ylab = 'Frequency (kHz)',
# main = 'Whistle Contours')
# # add grid lines for frequency at 0.125 s and 5 kHz intervals
# for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
# col="lightgray")}
# for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
# col="lightgray")}
# # loop through each contour
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# lines(df$time, df$freq, col = rgb(0,0,0,0.4))
# }
#
# # plot histogram of median frequency
# hist(wl$wh$freqMedian/1000,
# breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
# main = 'Histogram of whistle median frequency',
# xlab = 'Median frequency (kHz)')
#
# cat('\n')
# cat('\n')
#
# cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# # create median stats table for all whistles
# cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
# row.names = FALSE) %>%
# kable_styling(bootstrap_options = c('basic', 'condensed'),
# full_width = F))
#
# } else {
# cat('\nNo whistles present.\n')
# }
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}# num clicks/peak freq check
} # loop
Time: 2024-09-17 03:42UTC to 2024-09-17 03:48UTC
Event contains 678 original clicks, 339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 183 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 6.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (6.22 - 7.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (4.56 - 8.69) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 03:48UTC to 2024-09-17 03:54UTC
Event contains 646 original clicks, 323 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 185 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.98 (6.88 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.47 ( 5.4 - 9.27) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 03:54UTC to 2024-09-17 04:00UTC
Event contains 1498 original clicks, 749 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 419 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.3 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (6.75 - 7.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (5.27 - 9.45) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:00UTC to 2024-09-17 04:06UTC
Event contains 1504 original clicks, 752 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 443 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.08 (7.19 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.32 (5.67 - 9.45) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:06UTC to 2024-09-17 04:12UTC
Event contains 2260 original clicks, 1130 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 685 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (6.13 - 7.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.64 ( 4.8 - 8.88) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:12UTC to 2024-09-17 04:18UTC
Event contains 1910 original clicks, 955 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 617 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 7.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.44 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (5.02 - 9.19) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:18UTC to 2024-09-17 04:24UTC
Event contains 2270 original clicks, 1135 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 780 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 6.94 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.29 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.93 (4.84 - 8.92) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:24UTC to 2024-09-17 04:30UTC
Event contains 1840 original clicks, 920 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 657 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.91 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 6.2 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.73 (4.71 - 8.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:30UTC to 2024-09-17 04:36UTC
Event contains 2628 original clicks, 1314 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 930 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 6.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (6.28 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.7 (4.88 - 9.01) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:36UTC to 2024-09-17 04:42UTC
Event contains 3658 original clicks, 1829 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1361 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.58 - 8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 ( 5.2 - 9.25) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:42UTC to 2024-09-17 04:48UTC
Event contains 4300 original clicks, 2150 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1546 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.4 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.64 - 8.07) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (5.21 - 9.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-17 04:48UTC to 2024-09-17 04:54UTC
Event contains 4642 original clicks, 2321 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1792 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.31 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 ( 6.3 - 7.92) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.08 (5.03 - 9.48) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 16) |
Time: 2024-09-17 04:54UTC to 2024-09-17 05:00UTC
Event contains 4732 original clicks, 2366 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1789 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.72 |
| Median 10dB Center Frequency [kHz] | 7.01 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.98 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (4.61 - 9.12) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-09-17 05:00UTC to 2024-09-17 05:06UTC
Event contains 5634 original clicks, 2817 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2234 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (6.14 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.29 (4.57 - 9.42) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-17 05:06UTC to 2024-09-17 05:12UTC
Event contains 7082 original clicks, 3541 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2753 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.87 |
| Median 10dB Center Frequency [kHz] | 6.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.09 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 (4.57 - 9.12) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 141) |
Time: 2024-09-17 05:12UTC to 2024-09-17 05:18UTC
Event contains 8138 original clicks, 4069 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 6.79 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 (5.73 - 7.65) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (4.32 - 8.98) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 292) |
Time: 2024-09-17 05:18UTC to 2024-09-17 05:24UTC
Event contains 8368 original clicks, 4184 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3460 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (6.04 - 7.77) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (4.49 - 9.61) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 201) |
Time: 2024-09-17 05:24UTC to 2024-09-17 05:30UTC
Event contains 5896 original clicks, 2948 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2526 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.78 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.8 (5.58 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.75 (4.39 - 9.82) |
| Median duration [μs] (25-75 percentile) | 155 (0 - 404) |
Time: 2024-09-17 05:30UTC to 2024-09-17 05:36UTC
Event contains 9138 original clicks, 4569 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3891 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.64 (5.94 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.64 (4.32 - 9.93) |
| Median duration [μs] (25-75 percentile) | 123 (0 - 342) |
Time: 2024-09-17 05:36UTC to 2024-09-17 05:42UTC
Event contains 9842 original clicks, 4921 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4218 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 7.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 (5.95 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.06 (4.24 - 10.1) |
| Median duration [μs] (25-75 percentile) | 102 (0 - 349) |
Time: 2024-09-17 05:42UTC to 2024-09-17 05:48UTC
Event contains 14000 original clicks, 7000 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6304 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.15 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.83 (6.07 - 8.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.22 (4.35 - 10.4) |
| Median duration [μs] (25-75 percentile) | 229 (13 - 1000) |
Time: 2024-09-17 05:48UTC to 2024-09-17 05:54UTC
Event contains 15334 original clicks, 7667 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6868 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.77 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.85 (6.13 - 8.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.23 (4.53 - 10.5) |
| Median duration [μs] (25-75 percentile) | 271 (42 - 1000) |
Time: 2024-09-17 05:54UTC to 2024-09-17 06:00UTC
Event contains 12932 original clicks, 6466 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5843 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.62 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.82 (6.55 - 8.71) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.05 (4.75 - 10.8) |
| Median duration [μs] (25-75 percentile) | 297 (44 - 1000) |
Time: 2024-09-17 06:00UTC to 2024-09-17 06:06UTC
Event contains 11822 original clicks, 5911 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5217 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.74 (6.26 - 8.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.2 (4.47 - 10.5) |
| Median duration [μs] (25-75 percentile) | 198 (0 - 498) |
Time: 2024-09-17 06:06UTC to 2024-09-17 06:12UTC
Event contains 10678 original clicks, 5339 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4820 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.27 |
| Median 10dB Center Frequency [kHz] | 7.92 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.89 (5.95 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.73 (4.27 - 10.9) |
| Median duration [μs] (25-75 percentile) | 295 (44 - 1059) |
Time: 2024-09-17 06:12UTC to 2024-09-17 06:18UTC
Event contains 11634 original clicks, 5817 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5077 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (6.42 - 8.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.23 (4.61 - 10.9) |
| Median duration [μs] (25-75 percentile) | 276 (8 - 1000) |
Time: 2024-09-17 06:18UTC to 2024-09-17 06:24UTC
Event contains 15446 original clicks, 7723 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7021 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.77 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.9 (6.44 - 9.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.86 (4.54 - 11.4) |
| Median duration [μs] (25-75 percentile) | 433 (100 - 2367) |
Time: 2024-09-17 06:24UTC to 2024-09-17 06:30UTC
Event contains 18300 original clicks, 9150 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8270 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.98 |
| Median 10dB Center Frequency [kHz] | 8.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.86 (6.65 - 9.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.12 (4.59 - 11.7) |
| Median duration [μs] (25-75 percentile) | 472 (149 - 2375) |
Time: 2024-09-17 06:30UTC to 2024-09-17 06:36UTC
Event contains 21688 original clicks, 10844 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9920 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.42 |
| Median 10dB Center Frequency [kHz] | 9.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.96 (7.08 - 9.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.47 (4.82 - 12.5) |
| Median duration [μs] (25-75 percentile) | 571 (219 - 2445) |
Time: 2024-09-17 06:36UTC to 2024-09-17 06:42UTC
Event contains 20518 original clicks, 10259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9475 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 8.39 |
| Median 10dB Center Frequency [kHz] | 9.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.74 ( 7.1 - 9.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.69 (4.91 - 12.2) |
| Median duration [μs] (25-75 percentile) | 555 (119 - 2393) |
Time: 2024-09-17 06:42UTC to 2024-09-17 06:48UTC
Event contains 19286 original clicks, 9643 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8886 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.68 |
| Median 10dB Center Frequency [kHz] | 9.07 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.6 ( 7.5 - 9.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.52 (5.38 - 12.1) |
| Median duration [μs] (25-75 percentile) | 508 (100 - 2126) |
Time: 2024-09-17 06:48UTC to 2024-09-17 06:54UTC
Event contains 18332 original clicks, 9166 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8378 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.8 |
| Median 3dB Center Frequency [kHz] | 8.76 |
| Median 10dB Center Frequency [kHz] | 9.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (7.72 - 9.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.15 (5.64 - 12.2) |
| Median duration [μs] (25-75 percentile) | 456 (23 - 1074) |
Time: 2024-09-17 06:54UTC to 2024-09-17 07:00UTC
Event contains 18298 original clicks, 9149 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8338 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 9.07 |
| Median 10dB Center Frequency [kHz] | 9.55 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (8.09 - 10) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.01 (5.85 - 12.4) |
| Median duration [μs] (25-75 percentile) | 399 (0 - 1092) |
Time: 2024-09-17 07:00UTC to 2024-09-17 07:06UTC
Event contains 17550 original clicks, 8775 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7994 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10 |
| Median 3dB Center Frequency [kHz] | 9.85 |
| Median 10dB Center Frequency [kHz] | 10.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (8.91 - 10.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.29 (6.39 - 13.3) |
| Median duration [μs] (25-75 percentile) | 420 (0 - 1188) |
Time: 2024-09-17 07:06UTC to 2024-09-17 07:12UTC
Event contains 14518 original clicks, 7259 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6644 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (9.18 - 11.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.53 (5.85 - 13.9) |
| Median duration [μs] (25-75 percentile) | 394 (0 - 1671) |
Time: 2024-09-17 07:12UTC to 2024-09-17 07:18UTC
Event contains 16702 original clicks, 8351 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7689 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 8.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 ( 6.4 - 8.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.9 (4.23 - 11.3) |
| Median duration [μs] (25-75 percentile) | 516 (0 - 1994) |
Time: 2024-09-17 07:18UTC to 2024-09-17 07:24UTC
Event contains 18692 original clicks, 9346 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8598 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.37 |
| Median 10dB Center Frequency [kHz] | 7.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 (6.19 - 8.48) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.04 (4.12 - 11.2) |
| Median duration [μs] (25-75 percentile) | 474 (31 - 1335) |
Time: 2024-09-17 07:24UTC to 2024-09-17 07:30UTC
Event contains 20906 original clicks, 10453 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 9524 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.61 (5.62 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.91 (3.82 - 10.2) |
| Median duration [μs] (25-75 percentile) | 674 (146 - 1588) |
Time: 2024-09-17 07:30UTC to 2024-09-17 07:36UTC
Event contains 22256 original clicks, 11128 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10152 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.22 |
| Median 10dB Center Frequency [kHz] | 6.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.59 (5.11 - 7.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.9 (3.62 - 9.65) |
| Median duration [μs] (25-75 percentile) | 590 (112 - 1298) |
Time: 2024-09-17 07:36UTC to 2024-09-17 07:42UTC
Event contains 24162 original clicks, 12081 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11011 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.29 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.68 (5.16 - 7.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.02 (3.58 - 9.83) |
| Median duration [μs] (25-75 percentile) | 680 (222 - 1439) |
Time: 2024-09-17 07:42UTC to 2024-09-17 07:48UTC
Event contains 23026 original clicks, 11513 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 10251 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.89 |
| Median 10dB Center Frequency [kHz] | 6.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (4.82 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.87 (3.38 - 9.43) |
| Median duration [μs] (25-75 percentile) | 560 (211 - 1191) |
Time: 2024-09-17 07:48UTC to 2024-09-17 07:54UTC
Event contains 19198 original clicks, 9599 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8580 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.76 |
| Median 10dB Center Frequency [kHz] | 6.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (4.73 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (3.45 - 9.05) |
| Median duration [μs] (25-75 percentile) | 451 (151 - 1000) |
Time: 2024-09-17 08:54UTC to 2024-09-17 09:00UTC
Event contains 4952 original clicks, 2476 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1518 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 5.97 |
| Median 10dB Center Frequency [kHz] | 6.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (5.21 - 6.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.9 (3.91 - 8.55) |
| Median duration [μs] (25-75 percentile) | 50 (0 - 295) |
Time: 2024-09-17 20:42UTC to 2024-09-17 20:48UTC
Event contains 6550 original clicks, 3275 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1939 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.4 |
| Median 3dB Center Frequency [kHz] | 7.88 |
| Median 10dB Center Frequency [kHz] | 8.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 ( 6.9 - 8.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.11 (5.27 - 11.1) |
| Median duration [μs] (25-75 percentile) | 39 (0 - 115) |
Time: 2024-09-17 20:48UTC to 2024-09-17 20:54UTC
Event contains 17578 original clicks, 8789 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5723 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.2 |
| Median 3dB Center Frequency [kHz] | 8.87 |
| Median 10dB Center Frequency [kHz] | 9.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (8.18 - 9.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 ( 6.6 - 11.2) |
| Median duration [μs] (25-75 percentile) | 222 (100 - 493) |
Time: 2024-09-17 20:54UTC to 2024-09-17 21:00UTC
Event contains 2162 original clicks, 1081 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 596 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.78 |
| Median 10dB Center Frequency [kHz] | 6.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.05 - 6.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 (3.84 - 8.99) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 105) |
Time: 2024-09-18 12:18UTC to 2024-09-18 12:24UTC
Event contains 418 original clicks, 209 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 151 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.42 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (5.86 - 6.91) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.16 (4.97 - 8.81) |
| Median duration [μs] (25-75 percentile) | 99 (0 - 1000) |
Time: 2024-09-18 13:54UTC to 2024-09-18 14:00UTC
Event contains 402 original clicks, 201 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.35 |
| Median 10dB Center Frequency [kHz] | 6.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.74 - 6.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 ( 4.8 - 8.38) |
| Median duration [μs] (25-75 percentile) | 336 (29 - 1174) |
Time: 2024-09-19 01:54UTC to 2024-09-19 02:00UTC
Event contains 428 original clicks, 214 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 134 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (6.71 - 8.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.05 (5.33 - 9.53) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:00UTC to 2024-09-19 02:06UTC
Event contains 676 original clicks, 338 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 205 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.36 |
| Median 10dB Center Frequency [kHz] | 7.32 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.78 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (5.29 - 9.46) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:06UTC to 2024-09-19 02:12UTC
Event contains 800 original clicks, 400 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.46 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.84 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.62 (5.11 - 9.52) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:12UTC to 2024-09-19 02:18UTC
Event contains 1072 original clicks, 536 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.994 (6.66 - 7.63) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (5.64 - 8.93) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:18UTC to 2024-09-19 02:24UTC
Event contains 1154 original clicks, 577 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.53 |
| Median 10dB Center Frequency [kHz] | 7.35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.05 (6.93 - 8.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.55 (5.34 - 9.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:24UTC to 2024-09-19 02:30UTC
Event contains 726 original clicks, 363 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 222 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.44 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.77 - 8.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (5.69 - 9.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:30UTC to 2024-09-19 02:36UTC
Event contains 768 original clicks, 384 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 7.02 |
| Median 10dB Center Frequency [kHz] | 7.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.933 (6.48 - 7.58) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.25 (5.24 - 9.13) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:36UTC to 2024-09-19 02:42UTC
Event contains 2090 original clicks, 1045 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 730 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.67 - 8.03) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (5.38 - 9.33) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:42UTC to 2024-09-19 02:48UTC
Event contains 2204 original clicks, 1102 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 745 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.81 - 8.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (5.36 - 9.47) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:48UTC to 2024-09-19 02:54UTC
Event contains 2728 original clicks, 1364 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 951 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.34 |
| Median 10dB Center Frequency [kHz] | 7.47 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.75 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.59 (5.41 - 9.47) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 02:54UTC to 2024-09-19 03:00UTC
Event contains 3560 original clicks, 1780 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1254 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.42 |
| Median 10dB Center Frequency [kHz] | 7.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.79 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.46 (5.66 - 9.52) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:00UTC to 2024-09-19 03:06UTC
Event contains 2328 original clicks, 1164 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 784 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.48 |
| Median 10dB Center Frequency [kHz] | 7.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.91 - 8.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.39 (5.32 - 9.31) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:06UTC to 2024-09-19 03:12UTC
Event contains 3352 original clicks, 1676 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.18 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.51 - 7.86) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.44 (5.17 - 9.16) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:12UTC to 2024-09-19 03:18UTC
Event contains 2978 original clicks, 1489 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1077 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.58 |
| Median 10dB Center Frequency [kHz] | 7.61 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (6.89 - 8.25) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (5.49 - 9.63) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:18UTC to 2024-09-19 03:24UTC
Event contains 4034 original clicks, 2017 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1558 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.28 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (6.63 - 7.89) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (5.33 - 9.43) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:24UTC to 2024-09-19 03:30UTC
Event contains 4720 original clicks, 2360 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1759 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.23 |
| Median 10dB Center Frequency [kHz] | 7.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (6.46 - 7.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 ( 5.2 - 9.21) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:30UTC to 2024-09-19 03:36UTC
Event contains 5120 original clicks, 2560 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1891 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.61 |
| Median 10dB Center Frequency [kHz] | 7.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (6.86 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 (5.33 - 9.94) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:36UTC to 2024-09-19 03:42UTC
Event contains 5412 original clicks, 2706 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2127 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.52 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 ( 6.7 - 8.29) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.11 (5.22 - 9.74) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 46) |
Time: 2024-09-19 03:42UTC to 2024-09-19 03:48UTC
Event contains 4530 original clicks, 2265 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1724 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.43 |
| Median 10dB Center Frequency [kHz] | 7.49 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.72 - 8.09) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.76 (5.23 - 9.58) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 03:48UTC to 2024-09-19 03:54UTC
Event contains 4500 original clicks, 2250 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1721 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.68 |
| Median 10dB Center Frequency [kHz] | 7.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.96 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.12 ( 5.5 - 10) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 47) |
Time: 2024-09-19 03:54UTC to 2024-09-19 04:00UTC
Event contains 3580 original clicks, 1790 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1391 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.35 |
| Median 10dB Center Frequency [kHz] | 7.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (6.66 - 7.93) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.79 (4.94 - 9.57) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-19 04:00UTC to 2024-09-19 04:06UTC
Event contains 1416 original clicks, 708 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 562 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.68 |
| Median 10dB Center Frequency [kHz] | 7.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 ( 6.9 - 8.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.15 (5.25 - 10.2) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 130) |
Time: 2024-09-19 04:06UTC to 2024-09-19 04:12UTC
Event contains 4230 original clicks, 2115 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1646 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.26 |
| Median 10dB Center Frequency [kHz] | 7.43 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.48 - 7.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.75 (4.95 - 9.58) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-19 04:12UTC to 2024-09-19 04:18UTC
Event contains 5898 original clicks, 2949 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2271 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (6.35 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.8 (5.09 - 9.48) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-19 04:18UTC to 2024-09-19 04:24UTC
Event contains 7050 original clicks, 3525 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2886 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.43 |
| Median 10dB Center Frequency [kHz] | 7.64 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.55 - 8.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.47 (4.68 - 9.96) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 308) |
Time: 2024-09-19 04:24UTC to 2024-09-19 04:30UTC
Event contains 6178 original clicks, 3089 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2486 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 ( 6.1 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 ( 4.4 - 9.69) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 234) |
Time: 2024-09-19 04:30UTC to 2024-09-19 04:36UTC
Event contains 7812 original clicks, 3906 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3115 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.63 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (5.84 - 7.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.32 (4.42 - 9.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 227) |
Time: 2024-09-19 04:36UTC to 2024-09-19 04:42UTC
Event contains 7718 original clicks, 3859 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3107 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.6 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (5.66 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.38 (4.05 - 9.35) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 253) |
Time: 2024-09-19 04:42UTC to 2024-09-19 04:48UTC
Event contains 7386 original clicks, 3693 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2843 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.27 |
| Median 10dB Center Frequency [kHz] | 6.53 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 ( 5.4 - 7.19) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.26 (4.11 - 8.91) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 125) |
Time: 2024-09-19 04:48UTC to 2024-09-19 04:54UTC
Event contains 7556 original clicks, 3778 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2966 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.59 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (4.87 - 6.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (3.69 - 8.41) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 148) |
Time: 2024-09-19 04:54UTC to 2024-09-19 05:00UTC
Event contains 8398 original clicks, 4199 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3335 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.39 |
| Median 10dB Center Frequency [kHz] | 6.93 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.52 - 7.18) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.35 (4.12 - 9.39) |
| Median duration [μs] (25-75 percentile) | 5.2 (0 - 177) |
Time: 2024-09-19 05:00UTC to 2024-09-19 05:06UTC
Event contains 7794 original clicks, 3897 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3050 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.08 |
| Median 10dB Center Frequency [kHz] | 6.58 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (5.13 - 6.96) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (3.89 - 9.09) |
| Median duration [μs] (25-75 percentile) | 23 (0 - 245) |
Time: 2024-09-19 05:06UTC to 2024-09-19 05:12UTC
Event contains 9052 original clicks, 4526 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3697 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 7.16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (5.86 - 7.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.24 ( 4.3 - 9.46) |
| Median duration [μs] (25-75 percentile) | 42 (0 - 355) |
Time: 2024-09-19 05:12UTC to 2024-09-19 05:18UTC
Event contains 8258 original clicks, 4129 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3336 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (5.56 - 7.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.56 (3.93 - 9.64) |
| Median duration [μs] (25-75 percentile) | 34 (0 - 311) |
Time: 2024-09-19 05:18UTC to 2024-09-19 05:24UTC
Event contains 7580 original clicks, 3790 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3059 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (5.43 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.83 (3.85 - 9.68) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 1000) |
Time: 2024-09-19 05:24UTC to 2024-09-19 05:30UTC
Event contains 8280 original clicks, 4140 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3229 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.69 |
| Median 10dB Center Frequency [kHz] | 7.04 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (5.75 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.62 (4.09 - 9.61) |
| Median duration [μs] (25-75 percentile) | 18 (0 - 313) |
Time: 2024-09-19 05:30UTC to 2024-09-19 05:36UTC
Event contains 10488 original clicks, 5244 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4289 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.11 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.06 - 7.06) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.84 ( 3.7 - 9.49) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 1000) |
Time: 2024-09-19 05:36UTC to 2024-09-19 05:42UTC
Event contains 9674 original clicks, 4837 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4016 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.18 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (5.23 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.72 (3.83 - 9.33) |
| Median duration [μs] (25-75 percentile) | 78 (0 - 360) |
Time: 2024-09-19 05:42UTC to 2024-09-19 05:48UTC
Event contains 8960 original clicks, 4480 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3397 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.12 |
| Median 10dB Center Frequency [kHz] | 6.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.15 - 7.05) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.7 (3.84 - 9.24) |
| Median duration [μs] (25-75 percentile) | 36 (0 - 240) |
Time: 2024-09-19 05:48UTC to 2024-09-19 05:54UTC
Event contains 9554 original clicks, 4777 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3732 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 7.17 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.15 - 7.82) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.43 (4.19 - 9.77) |
| Median duration [μs] (25-75 percentile) | 10 (0 - 180) |
Time: 2024-09-19 05:54UTC to 2024-09-19 06:00UTC
Event contains 8684 original clicks, 4342 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3630 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.47 |
| Median 10dB Center Frequency [kHz] | 7.86 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.57 - 8.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.9 (4.45 - 10.7) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 441) |
Time: 2024-09-19 06:00UTC to 2024-09-19 06:06UTC
Event contains 8690 original clicks, 4345 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3689 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 8.02 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.52 - 8.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.27 (4.78 - 10.4) |
| Median duration [μs] (25-75 percentile) | 47 (0 - 1000) |
Time: 2024-09-19 06:06UTC to 2024-09-19 06:12UTC
Event contains 11214 original clicks, 5607 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4799 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.12 |
| Median 10dB Center Frequency [kHz] | 7.51 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (6.17 - 7.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.46 (4.45 - 9.99) |
| Median duration [μs] (25-75 percentile) | 55 (0 - 495) |
Time: 2024-09-19 06:12UTC to 2024-09-19 06:18UTC
Event contains 12572 original clicks, 6286 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5407 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7.62 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.05 - 7.99) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.85 (4.12 - 10.5) |
| Median duration [μs] (25-75 percentile) | 83 (0 - 1000) |
Time: 2024-09-19 06:18UTC to 2024-09-19 06:24UTC
Event contains 9674 original clicks, 4837 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4228 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 7.85 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (6.48 - 8.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.67 (4.43 - 10.4) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 1000) |
Time: 2024-09-19 06:24UTC to 2024-09-19 06:30UTC
Event contains 11498 original clicks, 5749 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5011 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.39 |
| Median 10dB Center Frequency [kHz] | 8.03 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (6.29 - 8.38) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.89 (4.48 - 10.9) |
| Median duration [μs] (25-75 percentile) | 115 (0 - 1000) |
Time: 2024-09-19 06:30UTC to 2024-09-19 06:36UTC
Event contains 10366 original clicks, 5183 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4469 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.81 |
| Median 10dB Center Frequency [kHz] | 7.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (5.84 - 7.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.53 (4.12 - 9.9) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-09-19 06:36UTC to 2024-09-19 06:42UTC
Event contains 9910 original clicks, 4955 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4058 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 7.21 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (5.52 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.88 (3.92 - 10.1) |
| Median duration [μs] (25-75 percentile) | 73 (0 - 454) |
Time: 2024-09-19 06:42UTC to 2024-09-19 06:48UTC
Event contains 8908 original clicks, 4454 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3696 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.36 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (5.48 - 7.26) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.63 (3.97 - 9.58) |
| Median duration [μs] (25-75 percentile) | 89 (0 - 1000) |
Time: 2024-09-19 06:48UTC to 2024-09-19 06:54UTC
Event contains 9298 original clicks, 4649 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4067 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 (6.07 - 7.97) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.61 (4.25 - 9.98) |
| Median duration [μs] (25-75 percentile) | 112 (0 - 1000) |
Time: 2024-09-19 06:54UTC to 2024-09-19 07:00UTC
Event contains 8286 original clicks, 4143 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3501 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.53 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.45 (5.68 - 7.39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.72 (4.11 - 9.84) |
| Median duration [μs] (25-75 percentile) | 60 (0 - 422) |
Time: 2024-09-19 07:06UTC to 2024-09-19 07:12UTC
Event contains 7594 original clicks, 3797 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3164 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.93 |
| Median 10dB Center Frequency [kHz] | 6.39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (4.97 - 6.85) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.31 (3.66 - 8.9) |
| Median duration [μs] (25-75 percentile) | 70 (0 - 396) |
Time: 2024-09-19 08:06UTC to 2024-09-19 08:12UTC
Event contains 1226 original clicks, 613 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 373 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.13 |
| Median 10dB Center Frequency [kHz] | 6.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 ( 5.5 - 6.69) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.78 (4.27 - 8.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 08:12UTC to 2024-09-19 08:18UTC
Event contains 1386 original clicks, 693 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 406 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 6.78 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 ( 5.9 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.94 (4.33 - 8.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 7) |
Time: 2024-09-19 08:24UTC to 2024-09-19 08:30UTC
Event contains 1070 original clicks, 535 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.59 |
| Median 10dB Center Frequency [kHz] | 7.05 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 ( 5.9 - 7.37) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.64 - 9.35) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 5) |
Time: 2024-09-19 08:42UTC to 2024-09-19 08:48UTC
Event contains 506 original clicks, 253 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 178 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.25 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.69 - 7.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.26 (5.88 - 9.39) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 08:48UTC to 2024-09-19 08:54UTC
Event contains 858 original clicks, 429 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.77 |
| Median 10dB Center Frequency [kHz] | 6.14 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 ( 5.2 - 6.45) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (3.81 - 7.91) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 09:00UTC to 2024-09-19 09:06UTC
Event contains 922 original clicks, 461 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 268 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.96 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.26 - 7.68) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.66 - 9.22) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 11:30UTC to 2024-09-19 11:36UTC
Event contains 476 original clicks, 238 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 168 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.83 |
| Median 10dB Center Frequency [kHz] | 7.84 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.996 (7.17 - 8.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (5.66 - 9.63) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 17:06UTC to 2024-09-19 17:12UTC
Event contains 660 original clicks, 330 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 243 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8 |
| Median 3dB Center Frequency [kHz] | 7.66 |
| Median 10dB Center Frequency [kHz] | 7.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (6.89 - 8.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.09 (4.67 - 9.83) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-19 20:06UTC to 2024-09-19 20:12UTC
Event contains 2938 original clicks, 1469 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 496 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.2 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.15 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (5.15 - 6.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 (3.94 - 8.21) |
| Median duration [μs] (25-75 percentile) | 112 (21 - 396) |
Time: 2024-09-19 20:12UTC to 2024-09-19 20:18UTC
Event contains 724 original clicks, 362 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 148 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.7 |
| Median 10dB Center Frequency [kHz] | 5.98 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (5.07 - 6.32) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.83 (3.88 - 8.07) |
| Median duration [μs] (25-75 percentile) | 68 (0 - 261) |
Time: 2024-09-22 03:57UTC to 2024-09-22 04:03UTC
Event contains 844 original clicks, 422 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 261 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.75 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.17 - 7.36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.43 (4.91 - 8.45) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:03UTC to 2024-09-22 04:09UTC
Event contains 572 original clicks, 286 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 171 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.81 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.03 - 7.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.45 ( 4.8 - 8.66) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:09UTC to 2024-09-22 04:15UTC
Event contains 832 original clicks, 416 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 269 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.99 |
| Median 10dB Center Frequency [kHz] | 6.73 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.29 (6.08 - 7.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.95 (4.66 - 8.79) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:15UTC to 2024-09-22 04:21UTC
Event contains 1324 original clicks, 662 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 454 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.03 |
| Median 10dB Center Frequency [kHz] | 6.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.32 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.34 ( 4.9 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:21UTC to 2024-09-22 04:27UTC
Event contains 2352 original clicks, 1176 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 435 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.98 (5.88 - 7.27) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (4.57 - 8.64) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:27UTC to 2024-09-22 04:33UTC
Event contains 1398 original clicks, 699 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 262 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.57 - 6.94) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (4.37 - 8.49) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:33UTC to 2024-09-22 04:39UTC
Event contains 876 original clicks, 438 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 276 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.74 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.12 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.51 (4.82 - 8.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:39UTC to 2024-09-22 04:45UTC
Event contains 934 original clicks, 467 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 274 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.73 |
| Median 10dB Center Frequency [kHz] | 6.76 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (6.19 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.67 (4.76 - 8.73) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:45UTC to 2024-09-22 04:51UTC
Event contains 988 original clicks, 494 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 289 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.08 |
| Median 10dB Center Frequency [kHz] | 7.33 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (6.25 - 7.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.99 (4.69 - 9.44) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:51UTC to 2024-09-22 04:57UTC
Event contains 1842 original clicks, 921 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 671 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.04 |
| Median 10dB Center Frequency [kHz] | 6.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.49 - 7.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 (5.16 - 8.68) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 04:57UTC to 2024-09-22 05:03UTC
Event contains 2024 original clicks, 1012 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 743 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 6.97 |
| Median 10dB Center Frequency [kHz] | 7.13 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (6.39 - 7.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (5.17 - 8.86) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:03UTC to 2024-09-22 05:09UTC
Event contains 1604 original clicks, 802 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.86 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (6.18 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.11 (5.32 - 8.51) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:09UTC to 2024-09-22 05:15UTC
Event contains 754 original clicks, 377 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.76 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.18 (6.06 - 7.44) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.47 (4.59 - 8.56) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:15UTC to 2024-09-22 05:21UTC
Event contains 686 original clicks, 343 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 231 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.36 |
| Median 10dB Center Frequency [kHz] | 7.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (6.66 - 8.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.66 (5.36 - 9.28) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:21UTC to 2024-09-22 05:27UTC
Event contains 1440 original clicks, 720 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 531 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.92 |
| Median 10dB Center Frequency [kHz] | 6.88 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.967 (6.32 - 7.52) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.01 ( 5.3 - 8.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:27UTC to 2024-09-22 05:33UTC
Event contains 894 original clicks, 447 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 301 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.44 |
| Median 10dB Center Frequency [kHz] | 7.41 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.1 (6.69 - 8.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.52 (5.54 - 9.42) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:33UTC to 2024-09-22 05:39UTC
Event contains 740 original clicks, 370 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 273 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.25 |
| Median 10dB Center Frequency [kHz] | 6.24 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.57 - 6.88) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.42 (4.33 - 8.33) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:39UTC to 2024-09-22 05:45UTC
Event contains 1506 original clicks, 753 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 632 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7 |
| Median 10dB Center Frequency [kHz] | 6.91 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.985 (6.38 - 7.62) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.59 (5.57 - 8.36) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:45UTC to 2024-09-22 05:51UTC
Event contains 1408 original clicks, 704 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 592 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.05 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.941 (6.62 - 7.53) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 2.77 (5.52 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 05:51UTC to 2024-09-22 05:57UTC
Event contains 536 original clicks, 268 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 170 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.68 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (5.57 - 7.21) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.84 (4.18 - 8.63) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 06:03UTC to 2024-09-22 06:09UTC
Event contains 708 original clicks, 354 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 261 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.61 |
| Median 10dB Center Frequency [kHz] | 6.75 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (5.96 - 7.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.27 (4.81 - 8.6) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 06:09UTC to 2024-09-22 06:15UTC
Event contains 566 original clicks, 283 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.71 |
| Median 10dB Center Frequency [kHz] | 6.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.12 (5.86 - 7.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.16 ( 4.5 - 8.8) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 06:15UTC to 2024-09-22 06:21UTC
Event contains 894 original clicks, 447 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 324 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 6.95 |
| Median 10dB Center Frequency [kHz] | 7.06 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 ( 6.4 - 7.66) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.33 (5.11 - 8.69) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 14) |
Time: 2024-09-22 06:21UTC to 2024-09-22 06:27UTC
Event contains 790 original clicks, 395 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.77 |
| Median 10dB Center Frequency [kHz] | 6.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 ( 5.9 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.07 (4.41 - 8.78) |
| Median duration [μs] (25-75 percentile) | 2.6 (0 - 480) |
Time: 2024-09-22 06:33UTC to 2024-09-22 06:39UTC
Event contains 1100 original clicks, 550 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 457 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.36 |
| Median 10dB Center Frequency [kHz] | 6.29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.34 (5.46 - 7.28) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.6 (4.14 - 8.63) |
| Median duration [μs] (25-75 percentile) | 326 (0 - 1000) |
Time: 2024-09-22 06:39UTC to 2024-09-22 06:45UTC
Event contains 848 original clicks, 424 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 265 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.41 |
| Median 10dB Center Frequency [kHz] | 6.67 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (5.56 - 7.24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (4.45 - 8.57) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 06:45UTC to 2024-09-22 06:51UTC
Event contains 726 original clicks, 363 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.17 |
| Median 10dB Center Frequency [kHz] | 7.36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 (6.35 - 8.01) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.25 (5.06 - 9.49) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 06:57UTC to 2024-09-22 07:03UTC
Event contains 612 original clicks, 306 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.57 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (5.75 - 7.14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.5 (4.44 - 8.79) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:03UTC to 2024-09-22 07:09UTC
Event contains 894 original clicks, 447 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 352 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.29 |
| Median 10dB Center Frequency [kHz] | 7.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (6.38 - 8.17) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.23 (4.41 - 9.29) |
| Median duration [μs] (25-75 percentile) | 87 (0 - 2348) |
Time: 2024-09-22 07:09UTC to 2024-09-22 07:15UTC
Event contains 1254 original clicks, 627 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 495 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.11 |
| Median 10dB Center Frequency [kHz] | 7.09 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (6.24 - 8.02) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.92 (4.84 - 9.22) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 1592) |
Time: 2024-09-22 07:15UTC to 2024-09-22 07:21UTC
Event contains 792 original clicks, 396 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 273 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.66 |
| Median 10dB Center Frequency [kHz] | 6.95 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (5.81 - 7.61) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.56 (4.82 - 9.23) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 3) |
Time: 2024-09-22 07:21UTC to 2024-09-22 07:27UTC
Event contains 980 original clicks, 490 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.07 |
| Median 10dB Center Frequency [kHz] | 7.46 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (6.31 - 7.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.38 (5.32 - 9.31) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:27UTC to 2024-09-22 07:33UTC
Event contains 1612 original clicks, 806 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 640 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.2 |
| Median 3dB Center Frequency [kHz] | 7.2 |
| Median 10dB Center Frequency [kHz] | 7.26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (6.57 - 7.75) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.06 (5.35 - 8.95) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:33UTC to 2024-09-22 07:39UTC
Event contains 768 original clicks, 384 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 248 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.62 |
| Median 10dB Center Frequency [kHz] | 6.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (5.97 - 7.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.77 (4.56 - 8.61) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:39UTC to 2024-09-22 07:45UTC
Event contains 1326 original clicks, 663 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 488 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.51 |
| Median 10dB Center Frequency [kHz] | 7.54 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.07 (6.83 - 8.15) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.68 (5.63 - 9.4) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:45UTC to 2024-09-22 07:51UTC
Event contains 1886 original clicks, 943 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 669 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.4 |
| Median 3dB Center Frequency [kHz] | 6.5 |
| Median 10dB Center Frequency [kHz] | 6.66 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 ( 5.8 - 7.22) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.81 (4.52 - 8.7) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 07:51UTC to 2024-09-22 07:57UTC
Event contains 2054 original clicks, 1027 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 849 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.9 |
| Median 10dB Center Frequency [kHz] | 6.12 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (5.04 - 6.64) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.12 (3.72 - 7.97) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 420) |
Time: 2024-09-22 08:09UTC to 2024-09-22 08:15UTC
Event contains 546 original clicks, 273 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.81 |
| Median 10dB Center Frequency [kHz] | 6.63 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.31 (6.03 - 7.79) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 4.19 (4.21 - 9.08) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-22 08:15UTC to 2024-09-22 08:21UTC
Event contains 824 original clicks, 412 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 312 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.47 |
| Median 10dB Center Frequency [kHz] | 6.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.19 (5.77 - 7.33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.18 (4.87 - 8.55) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 376) |
Time: 2024-09-22 08:51UTC to 2024-09-22 08:57UTC
Event contains 406 original clicks, 203 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 144 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.6 |
| Median 3dB Center Frequency [kHz] | 7.72 |
| Median 10dB Center Frequency [kHz] | 7.71 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (7.14 - 8.08) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.36 ( 5.6 - 9.26) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 09:03UTC to 2024-09-22 09:09UTC
Event contains 622 original clicks, 311 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 240 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7 |
| Median 3dB Center Frequency [kHz] | 7.01 |
| Median 10dB Center Frequency [kHz] | 7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (6.39 - 7.41) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.29 (5.26 - 8.46) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 09:09UTC to 2024-09-22 09:15UTC
Event contains 526 original clicks, 263 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 6.05 |
| Median 10dB Center Frequency [kHz] | 6.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.03 (5.48 - 6.74) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.37 (4.27 - 7.89) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 0) |
Time: 2024-09-22 12:03UTC to 2024-09-22 12:09UTC
Event contains 994 original clicks, 497 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6 |
| Median 3dB Center Frequency [kHz] | 5.67 |
| Median 10dB Center Frequency [kHz] | 5.87 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (4.92 - 6.42) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.96 (3.62 - 7.99) |
| Median duration [μs] (25-75 percentile) | 0 (0 - 100) |
Time: 2024-09-22 12:09UTC to 2024-09-22 12:15UTC
Event contains 7170 original clicks, 3585 valid clicks after filtering.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 6.8 |
| Median 3dB Center Frequency [kHz] | 6.46 |
| Median 10dB Center Frequency [kHz] | 6.83 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 ( 5.8 - 7.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 3.87 ( 4.2 - 9.1) |
| Median duration [μs] (25-75 percentile) | 162 (13 - 1000) |
# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
paste0('eventTable_', params$mission, '_',
params$drift, '_', Sys.Date(),'.csv')))
#dbDisconnect(dbFile)
After additional filtering based on median peak frequency, 154 events events of 1562 original events remain.